home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_ciel_client.dpr < prev    next >
Encoding:
Text File  |  2006-03-24  |  2.3 KB  |  69 lines

  1. library NTC;
  2. {
  3.     Copyright (C) 2004 - 2006 Andrew Sprott
  4.  
  5.     http://astronomy.crysania.co.uk
  6.     astro@trefach.co.uk
  7.  
  8.     This program is free software; you can redistribute it and/or
  9.     modify it under the terms of the GNU General Public License
  10.     as published by the Free Software Foundation; either version 2
  11.     of the License, or (at your option) any later version.
  12.  
  13.     This program is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. }
  22.  
  23. uses
  24.   forms,
  25.   ntc_ciel_client_form in 'ntc_ciel_client_form.pas' {scope},
  26.   ntc_ciel_client_control in 'ntc_ciel_client_control.pas' {scope_control},
  27.   ntc_ciel_client_network in 'ntc_ciel_client_network.pas' {scope_network},
  28.   ntc_ciel_client_info in 'ntc_ciel_client_info.pas' {scope_info},
  29.   ntc_ciel_client_focus in 'ntc_ciel_client_focus.pas' {scope_focus},
  30.   ntc_ciel_client_object in 'ntc_ciel_client_object.pas',
  31.   ntc_ciel_client_button in 'ntc_ciel_client_button.pas',
  32.   ntc_ciel_client_tracking in 'ntc_ciel_client_tracking.pas' {scope_tracking},
  33.   ntc_ciel_client_about in 'ntc_ciel_client_about.pas' {scope_about},
  34.   ntc_ciel_client_search in 'ntc_ciel_client_search.pas' {scope_search},
  35.   ntc_ciel_client_observer in 'ntc_ciel_client_observer.pas' {scope_observer};
  36.  
  37. {$E .tid}
  38. {$R *.res}
  39.  
  40. Exports
  41.     ScopeConnect,
  42.     ScopeDisconnect,
  43.     ScopeClose,
  44.     ScopeSetObs,
  45.     ScopeReset,
  46.     ScopeAlign,
  47.     ScopeShow,
  48.     ScopeShowModal,
  49.     ScopeGetRaDec,
  50.     ScopeGetAltAz,
  51.     ScopeGoto,
  52.     ScopeInitialized,
  53.     ScopeConnected,
  54.     ScopeGetInfo;
  55.  
  56. begin
  57.     Application.CreateForm(Tscope, scope);
  58.     Application.CreateForm(Tscope_info, scope_info);
  59.     Application.CreateForm(Tscope_focus, scope_focus);
  60.     Application.CreateForm(Tscope_control, scope_control);
  61.     Application.CreateForm(Tscope_search, scope_search);
  62.     Application.CreateForm(Tscope_network, scope_network);
  63.     Application.CreateForm(Tscope_tracking, scope_tracking);
  64.     Application.CreateForm(Tscope_observer, scope_observer);
  65.     Application.CreateForm(Tscope_about, scope_about);
  66.     init_client;
  67. end.
  68.  
  69.